debian/patches/: fixing typo in patch name
authorMatteo F. Vescovi <mfv.debian@gmail.com>
Tue, 7 Feb 2012 14:04:12 +0000 (15:04 +0100)
committerMatteo F. Vescovi <mfv.debian@gmail.com>
Tue, 7 Feb 2012 14:04:12 +0000 (15:04 +0100)
Git-Dch: Ignore

debian/patches/0001-Fix_FTBFS_previously_corrected_by_NMU.patch [new file with mode: 0644]
debian/patches/0001-Fix_FTFS_previously_corrected_by_NMU.patch [deleted file]
debian/patches/series

diff --git a/debian/patches/0001-Fix_FTBFS_previously_corrected_by_NMU.patch b/debian/patches/0001-Fix_FTBFS_previously_corrected_by_NMU.patch
new file mode 100644 (file)
index 0000000..f008b76
--- /dev/null
@@ -0,0 +1,29 @@
+From: "Matteo F. Vescovi" <mfv.debian@gmail.com>
+Date: Tue, 7 Feb 2012 14:23:57 +0100
+Subject: Fix_FTFS_previously_corrected_by_NMU
+
+Fix "FTBFS: babl-model.c:49:7:
+error: format not a string literal and
+no format arguments [-Werror=format-security]"
+
+Closes: #643356
+Thanks: Bart Martens
+Git-Dch: Short
+---
+ babl/babl-model.c |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/babl/babl-model.c b/babl/babl-model.c
+index 5fd4908..16a99b2 100644
+--- a/babl/babl-model.c
++++ b/babl/babl-model.c
+@@ -46,7 +46,7 @@ create_name (const char     *name,
+     return name;
+   while (components--)
+     {
+-      sprintf (p, (*component)->instance.name);
++      sprintf (p, "%s", (*component)->instance.name);
+       p += strlen ((*component)->instance.name);
+       component++;
+     }
+-- 
diff --git a/debian/patches/0001-Fix_FTFS_previously_corrected_by_NMU.patch b/debian/patches/0001-Fix_FTFS_previously_corrected_by_NMU.patch
deleted file mode 100644 (file)
index f008b76..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-From: "Matteo F. Vescovi" <mfv.debian@gmail.com>
-Date: Tue, 7 Feb 2012 14:23:57 +0100
-Subject: Fix_FTFS_previously_corrected_by_NMU
-
-Fix "FTBFS: babl-model.c:49:7:
-error: format not a string literal and
-no format arguments [-Werror=format-security]"
-
-Closes: #643356
-Thanks: Bart Martens
-Git-Dch: Short
----
- babl/babl-model.c |    2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/babl/babl-model.c b/babl/babl-model.c
-index 5fd4908..16a99b2 100644
---- a/babl/babl-model.c
-+++ b/babl/babl-model.c
-@@ -46,7 +46,7 @@ create_name (const char     *name,
-     return name;
-   while (components--)
-     {
--      sprintf (p, (*component)->instance.name);
-+      sprintf (p, "%s", (*component)->instance.name);
-       p += strlen ((*component)->instance.name);
-       component++;
-     }
--- 
index b7ce18d15f7bf12d0b375bff882afa5191d89f40..c87805b94a8bb9e89ab0a5fde16c1289a3f67773 100644 (file)
@@ -1 +1 @@
-0001-Fix_FTFS_previously_corrected_by_NMU.patch
+0001-Fix_FTBFS_previously_corrected_by_NMU.patch